home *** CD-ROM | disk | FTP | other *** search
/ AppleScript - The Beta Release / AppleScript - The Beta Release.iso / Developer Scripts / FileMaker Pro 2.0 AS Examples / Syntax Examples / Set Data examples < prev    next >
Text File  |  1992-11-25  |  311b  |  10 lines

  1. tell application "FileMaker Pro"
  2.     Set Data first Record to "a\tb"
  3.     Set Data Record 2 to {"a", "b"}
  4.     Set Data Record 3 of window 2 to {"aa", "bb"}
  5.     Set Data Record 4 of window 2 to "aaa\tbbbb"
  6.     Set Data Cell 2 to "ccc"
  7.     Set Data Field 1 to "replaced"
  8.     Set Data Field "c" of Database "Test1" to "munged"
  9. end tell
  10.